home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1992-02-26 | 659 b | 18 lines |
- '===================
- 'EXAMPLE PROGRAM TWO
- '===================
- '
- 'This little program prints a message on a black screen and then waits
- 'for any key to be pressed before returning the user back here, to the editor.
- 'Exactly the same as example 1
- '
- Rem This is the difference using colons can make to the readability
- Rem and size of your listings the single line below is example1.amos
- Rem all bunged smartly on one line seperated by colons.
- '
- '
- Paper 0 : Curs Off : Hide : Cls 0 : Print "Testing....Press a key" : Wait Key : Edit
- '
- '
- Rem You can use REM or a ' whatever suits you, it tells Amos not to
- Rem execute anything following on that line